be8a462b59f1d7a27df9d86d24268ba4071a8d51,subprojects/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRules.java,DefaultComponentSelectionRules,module,#Object#Action#,69
Before Change
}
public ComponentSelectionRules module(Object id, Action<? super ComponentSelection> selectionAction) {
addRule(createSpecRuleActionFromId(id, createRuleActionFromAction(selectionAction)));
return this;
}
public ComponentSelectionRules module(Object id, RuleAction<? super ComponentSelection> ruleAction) {
After Change
}
public ComponentSelectionRules module(Object id, Action<? super ComponentSelection> selectionAction) {
return addRule(createSpecRuleActionFromId(id, ruleActionAdapter.createFromAction(selectionAction)));
}
public ComponentSelectionRules module(Object id, RuleAction<? super ComponentSelection> ruleAction) {